home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / pcboard / vrs501.zip / VRS-M15.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1996-10-08  |  3KB  |  120 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 3.2O (Encryption type I) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     String   STRING001
  20.     String   STRING002
  21.     String   STRING003
  22.     String   STRING004
  23.  
  24. ;------------------------------------------------------------------------------
  25.  
  26.     Goto LABEL001
  27.     End
  28.     If (0 == 0) STRING001 = "NO"
  29.     If (0 == 1) STRING001 = "YES"
  30.  
  31.     EndFunc
  32.  
  33.     :LABEL001
  34.     If (Exist(PPEPath() + "VRS.KEY")) Then
  35.         FOpen 2, PPEPath() + "VRS.KEY", 0, 0
  36.         FGet 2, STRING002
  37.         FGet 2, STRING003
  38.         FClose 2
  39.         If ((Left(STRING002, 1) == "@") || (Left(STRING003, 1) == "@")) Then
  40.             STRING004 = "Pirate Key Attempt!"
  41.         ElseIf (Crc32(1, PPEPath() + "VRS.PPE") <> 1152163497) Then
  42.             STRING004 = "BAD MAIN FILE!"
  43.         ElseIf (Crc32(1, PPEPath() + "VRS-M10.PPE") <> 3.08792e+09) Then
  44.             STRING004 = "BAD SUPPORT FILE!"
  45.         Else
  46.             End
  47.         Endif
  48.         Cls
  49.         Newlines 2
  50.         PrintLn "@X10┌─────────────────────────────────────────────────────────────────────────────@X19┐@X0F"
  51.         PrintLn "@X10│@X9C !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! @X19│@X0F"
  52.         PrintLn "@X10│@X9C !!!!!                                                                 !!!!! @X19│@X0F"
  53.         PrintLn "@X10│@X9C !!!!!    @X1E One or more of the VRS modules has been tampered with.  @X9C !!!!! @X19│@X0F"
  54.         PrintLn "@X10│@X9C !!!!!    @X1E VRS will not continue, please obtain an original archive@X9C !!!!! @X19│@X0F"
  55.         PrintLn "@X10│@X9C !!!!!    @X1E From the PCS Support BBS listed in the VRS documentation.@X9C!!!!! @X19│@X0F"
  56.         PrintLn "@X10│@X9C !!!!!                                                                @X9C !!!!! @X19│@X0F"
  57.         PrintLn "@X10│@X9C !!!!!    @X1E Decompilation of copyrighted works is a U.S. Federal       @X9C !!!!! @X19│@X0F"
  58.         PrintLn "@X10│@X9C !!!!!    @X1E crime, and punishable by up to 10 years in prison and      @X9C !!!!! @X19│@X0F"
  59.         PrintLn "@X10│@X9C !!!!!    @X1E a $100,000 fine.                                           @X9C !!!!! @X19│@X0F"
  60.         PrintLn "@X10│@X9C !!!!!                                                                @X9C !!!!! @X19│@X0F"
  61.         PrintLn "@X10│@X9C !!!!!    @X1E Support shareware, this is how we put food on our tables   @X9C !!!!! @X19│@X0F"
  62.         PrintLn "@X10│@X9C !!!!!    @X1E and clothes on our childrens backs.  Thank you!            @X9C !!!!! @X19│@X0F"
  63.         PrintLn "@X10│@X9C !!!!!                                                                 !!!!! @X19│@X0F"
  64.         PrintLn "@X10│@X9C !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! @X19│@X0F"
  65.         PrintLn "@X10└@X19─────────────────────────────────────────────────────────────────────────────┘@X0F"
  66.         PrintLn STRING004
  67.         Delay (360 * 182) / 10
  68.         End
  69.  
  70. ;------------------------------------------------------------------------------
  71. ;
  72. ; Usage report (before postprocessing)
  73. ;
  74. ; ■ Statements used :
  75. ;
  76. ;    3       End
  77. ;    1       Cls
  78. ;    8       Goto 
  79. ;    5       Let 
  80. ;    17      PrintLn 
  81. ;    6       If 
  82. ;    1       FOpen 
  83. ;    1       FClose 
  84. ;    2       FGet 
  85. ;    1       Delay 
  86. ;    1       Newlines 
  87. ;    1       EndFunc
  88. ;
  89. ;
  90. ; ■ Functions used :
  91. ;
  92. ;    1       *
  93. ;    1       /
  94. ;    4       +
  95. ;    4       ==
  96. ;    2       <>
  97. ;    4       !
  98. ;    1       ||
  99. ;    2       Left()
  100. ;    4       PPEPath()
  101. ;    1       Exist()
  102. ;    2       Crc32()
  103. ;
  104. ;------------------------------------------------------------------------------
  105. ;
  106. ; Analysis flags : No flag
  107. ;
  108. ;------------------------------------------------------------------------------
  109. ;
  110. ; Postprocessing report
  111. ;
  112. ;    0       For/Next
  113. ;    0       While/EndWhile
  114. ;    4       If/Then or If/Then/Else
  115. ;    0       Select Case
  116. ;
  117. ;------------------------------------------------------------------------------
  118. ;                 AEGiS Corp - Break the routines, code against the machines!
  119. ;------------------------------------------------------------------------------
  120.